home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / c / CLib-SDI.lha / CLib-SDI / libsource / makefile.vbccMOS < prev    next >
Makefile  |  2002-10-27  |  518b  |  18 lines

  1. CFLAGS = +morphos -amiga-align -O2 -c -I/include2mos -I/include/C -D__NOLIBBASE__
  2. LFLAGS = +morphos -nostdlib -lamiga
  3.  
  4. # the directory, where destination library is stored
  5. DDIR = /libs/
  6.  
  7. $(DDIR)example.library: libinitvbccmos.o examplefuncsvbccmos.o
  8.     vc $(LFLAGS) -o $@ libinitvbccmos.o examplefuncsvbccmos.o
  9.     
  10. libinitvbccmos.o: libinfo.h libinit.c
  11.     vc $(CFLAGS) -o $@ libinit.c
  12.  
  13. examplefuncsvbccmos.o: libinfo.h examplefuncs.c
  14.     vc $(CFLAGS) -o $@ examplefuncs.c
  15.  
  16. clean:
  17.     delete examplefuncsvbccmos.o libinitvbccmos.o
  18.